body{
    overflow: hidden;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    padding: 0;
}
header{
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
    width: 100%;
  height:20vh;
}

main{

    background: linear-gradient(#f8f9fa, #519fec);
    text-align: center;
    height: 70vh;
    width: 100%;
  position: absolute;
  cleqr:both;

}

footer{
    background-color: #00274e;
    height: 5%;
    width: 100%;
    padding: 10px;
    position: fixed;
    bottom: 0;
    
    display: flex;
    justify-content: center;
    align-items: center;

}
a{
    text-decoration: none;
    color: white;
    font-size: 20px;
    font-weight: bold;
}

input{
    background: transparent;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: black 1px solid;
    padding: 10px;
}
input::placeholder
{
    color: black;
    font-weight: bold;
    text-align: center;

}

div{
    margin: auto;
    width: 200px;
    height: 300px;
    padding: 20px;
    background-color: rgba(248, 249, 250, 0.8);
    border-radius: 10px;
    box-shadow: 0 10px 13px rgba(0,0,0,0.2);
 
}
button{
    background-color: #00274e;
    color: white;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 15px;
    margin: 10% auto;
    cursor: pointer;
    border-radius: 15px;
}

#logtxt{
    font-size: 20px;
    font-weight: bold;
    color: #00274e;
}